home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2002 #9 / K-CD-9-2002.ISO / Freedom Force / data1.cab / System_Files / unlock.py < prev    next >
Encoding:
Text File  |  2002-03-21  |  323 b   |  15 lines

  1. # unlock.py: unlock all hero origins
  2.  
  3. import js
  4. import ff
  5. import event
  6.  
  7. print "Hello"
  8.  
  9. heros = ["alchemiss", "bullet", "el_diablo", "eve", "law", "liberty_lad",
  10.          "man_bot", "mentor", "microwave", "minute_man", "order", "the_ant"]
  11.  
  12. for h in heros:
  13.     js.Campaign_AddHero(h)
  14.     js.Campaign_Recruit(h)
  15.